home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Select (Limited Edition)
/
Computer Select.iso
/
pcc
/
v04n11
/
batch1.exe
/
OBLIVION.BAT
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1991-09-17
|
270 b
|
14 lines
@ECHO OFF
REM This is OBLIVION.BAT
REM It wipes out entire directories,
REM no questions asked. Be careful!
IF %1!==! GOTO OOPS
ECHO Y | DEL %1
RD %1
ECHO %1 OBLITERATED.
GOTO END
:OOPS
ECHO Enter a subdirectory to erase
ECHO after the %0. Be careful!
:END